home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue41 / ComCorn / LVCtrl.dpr < prev    next >
Encoding:
Text File  |  1998-12-02  |  446 b   |  26 lines

  1. library LVCtrl;
  2.  
  3. uses
  4.   ComServ,
  5.   LVCtrl_TLB in 'LVCtrl_TLB.pas',
  6.   LVImpl in 'LVImpl.pas' {ListViewX: CoClass},
  7.   About in 'About.pas' {ListViewXAbout},
  8.   LVItem in 'LVItem.pas' {ListItem: CoClass},
  9.   LVItems in 'LVItems.pas' {ListItems: CoClass},
  10.   ListView2 in 'ListView2.pas';
  11.  
  12. {$E ocx}
  13.  
  14. exports
  15.   DllGetClassObject,
  16.   DllCanUnloadNow,
  17.   DllRegisterServer,
  18.   DllUnregisterServer;
  19.  
  20. {$R *.TLB}
  21.  
  22. {$R *.RES}
  23.  
  24. begin
  25. end.
  26.